/* === DİL DEĞİŞTİRİCİ İÇİN CSS STİLLERİ BAŞLANGIÇ === -->*/
        .accont-wishlist-cart-area-header {
            display: flex;
            align-items: center;
            gap: 15px; /* Butonlar arası boşluk */
        }
        .language-dropdown {
            position: relative;
            display: inline-block;
        }
        .language-dropdown .dropdown-toggle {
            background-color: transparent; /* Arka planı şeffaf */
            border: none; /* Kenarlık yok */
            border-radius: 50%;
            width: 40px;
            height: 40px;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform .2s ease-in-out;
        }
        .language-dropdown .dropdown-toggle:hover {
            transform: scale(1.1); /* Üzerine gelince hafif büyütme efekti */
        }
        .language-dropdown .dropdown-toggle img {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            object-fit: cover;
        }
        .language-dropdown .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            right: 0;
            background-color: white;
            min-width: 160px;
            box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
            z-index: 100;
            border-radius: 8px;
            padding: 5px 0;
            list-style: none;
            margin: 0;
            margin-top: -2px;
        }
        .language-dropdown:hover .dropdown-menu {
            display: block;
        }
        .language-dropdown .dropdown-menu li a {
            color: black;
            padding: 10px 15px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
        }
        .language-dropdown .dropdown-menu li a img {
            width: 20px;
            height: auto;
            border-radius: 3px;
        }
        .language-dropdown .dropdown-menu li a:hover {
            background-color: #f1f1f1;
        }
    
    /*<!-- === DİL DEĞİŞTİRİCİ İÇİN CSS STİLLERİ BİTİŞ === --> */
    /* <!-- === LOGO BOYUTLANDIRMA İÇİN CSS KODU BAŞLANGIÇ === --> */
    
        .logo-area .logo {
            max-width: 140px; /* Logonun maksimum genişliğini belirler. Bu değeri istediğiniz gibi değiştirebilirsiniz. */
            height: auto;     /* Genişliğe göre yüksekliği otomatik ayarlayarak orantıyı korur. */
        }
   
    /*<!-- === LOGO BOYUTLANDIRMA İÇİN CSS KODU BİTİŞ === --> */
